home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 August / PC Plus SuperCD 50b Issue 142 (CD142b) (August 1998).iso / handson / CPPBuild / step3.exe / Xlist.h < prev   
Encoding:
C/C++ Source or Header  |  1998-05-06  |  377 b   |  16 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef xlistH
  3. #define xlistH
  4. //---------------------------------------------------------------------------
  5. #endif
  6. class Xlist {
  7. private:
  8.   Xlist *flink; // forward link
  9.   Xlist *blink; // backward link
  10. public:
  11.   void Add(Xlist *item);
  12.   Xlist* Remove();
  13.   int Count();
  14.   Xlist();
  15. };
  16.